while execute? 3while statement
Here is the syntax for the while statement:
while ( condition )
    statement 
Some notes on the syntax:
Since the statement can be a single statement or
a block statement,
a while statement can look like 
either of the following:
Varieties of while Statements | |
|---|---|
 | 
 | 
The style of indenting shown here leads to fewer errors than alternative styles.